home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000281_news@columbia.edu _Tue Feb 18 19:55:27 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA03057
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 18 Feb 1997 19:55:27 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA03768
  7.     for kermit.misc@watsun; Tue, 18 Feb 1997 19:55:26 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Problem with dialing on a USRobotics (long)
  12. Date: 19 Feb 1997 00:55:19 GMT
  13. Organization: Columbia University
  14. Lines: 54
  15. Message-ID: <5edj1n$rnt$1@apakabar.cc.columbia.edu>
  16. References: <330A1743.420D@mas-co1.uswc.uswest.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6620
  19.  
  20. In article <330A1743.420D@mas-co1.uswc.uswest.com>,
  21. Duane Christensen  <dlchri2@mas-co1.uswc.uswest.com> wrote:
  22. : I am running: C-Kermit 6.0.192, 6 Sep 96, for HP-UX 9.0
  23. : with a US Robotics Courier V.Everything(TM) modem and the
  24. : modem set to usrobotics on a HP-UX 9000/891 A.09.04 (T500)
  25. : machine.
  26. : After a soft reboot of the machine the modem fails to
  27. : recognize the Hangup-command string of ATQ0H0, and then
  28. : fails to recognize the Init-string.
  29. :
  30. In fact, your logs show that it fails to read any characters
  31. at all.  What happens if you do this:
  32.  
  33.   set modem type usr
  34.   set carrier off
  35.   set line /dev/xxxx
  36.   set speed 57600
  37.   connect
  38.  
  39. and then type AT and carriage return?
  40.  
  41. : My guess is that there is not a one second pause around the +++...
  42. :
  43. There is definitely a pause.
  44.  
  45. : I need to make the script for the new version work all the time.
  46. : I do not want to keep both versions of the code around.  If need
  47. : be, I will ask to have the updated version removed. I would prefer
  48. : to have the new version work all the time, and remove the old
  49. : version.
  50. I would too, of course.  This is a tough one to diagnose at a distance.
  51. Nobody else has reported any problems like this with HP-UX 9.0.
  52.  
  53. OK, so if you dial the modem with C-Kermit 5A(190) once, then you can
  54. use C-Kermit 6.0.192 all you want until the next time the system is booted?
  55.  
  56. Let me take a wild stab...  One big difference between the two Kermit versions
  57. is that C-Kermit 6.0 automatically chooses the best type of flow control;
  58. in this case RTS/CTS because both the modem and HP-UX support it.  5A(190)
  59. did not do that, and so was probably using the default setting of Xon/Xoff.
  60. This makes me think that the cable between the computer and the modem might
  61. not have the circuits needed for hardware flow control.  So what happens if
  62. you do this:
  63.  
  64.   set modem type usr
  65.   set flow xon/xoff
  66.   set line /dev/xxxx
  67.   set speed 57600
  68.  
  69. and then dial?
  70.  
  71. - Frank